From bc7b6a0e538ee661fae6db7e668a8bad4a42b91b Mon Sep 17 00:00:00 2001 From: scherek Date: Sat, 12 Jun 2021 19:10:11 +0200 Subject: [PATCH] Dropped defined() for readability --- gtk/gtkpopcountprivate.h | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk/gtkpopcountprivate.h b/gtk/gtkpopcountprivate.h index 38c4d6f95e..e0eeb3fdf8 100644 --- a/gtk/gtkpopcountprivate.h +++ b/gtk/gtkpopcountprivate.h @@ -20,7 +20,7 @@ #pragma once -#if defined(_MSC_VER) && !defined(_M_ARM) && !defined(_M_ARM64) && defined(__AVX__) || defined(__SSE4_2__) || defined(__POPCNT__) +#if (_MSC_VER && !_M_ARM && !_M_ARM64) && (__AVX__ || __SSE4_2__ || __POPCNT__) #include static inline guint -- 2.30.2